From: Paul Eggert Date: Thu, 14 Apr 2011 02:27:17 +0000 (-0700) Subject: * syntax.c (syntax_temp): Define only if !__GNUC__. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~4132^2~18 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f222188f7c66b36e53bc370cca28936421f4e67b;p=emacs.git * syntax.c (syntax_temp): Define only if !__GNUC__. --- diff --git a/src/ChangeLog b/src/ChangeLog index 51c5e3dc2d9..45fe7555f2c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-04-14 Paul Eggert + * syntax.c (syntax_temp): Define only if !__GNUC__. + * sound.c (current_sound_device, current_sound): Now static. * search.c (searchbufs, searchbuf_head): Now static. diff --git a/src/syntax.c b/src/syntax.c index 96d50f9a4e3..518ba3bba15 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -98,10 +98,12 @@ along with GNU Emacs. If not, see . */ static Lisp_Object Qsyntax_table_p; static Lisp_Object Qsyntax_table, Qscan_error; +#ifndef __GNUC__ /* Used as a temporary in SYNTAX_ENTRY and other macros in syntax.h, if not compiled with GCC. No need to mark it, since it is used only very temporarily. */ Lisp_Object syntax_temp; +#endif /* This is the internal form of the parse state used in parse-partial-sexp. */